.openanimation_window{
    min-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    backdrop-filter: blur(7.5px);            /* the blur effect */
    -webkit-backdrop-filter: blur(7.5px);    /* for Safari */
}

.open_background_rounded_square{
    border-radius: 37.5px;
    min-width: 50%;
    min-height: 35vh;
    min-height: 35dvh;
    padding: 50px 50px 50px 50px;
}

.open_background_circle{
    border-radius: 50%;
    min-width: 50%;
    min-height: 25vh;
    min-height: 25dvh;
    padding: 38px 50px 38px 50px;
}

.open_background_rounded_square:hover{
    cursor: pointer;
}

.open_background_circle:hover{
    cursor: pointer;
}

.breathing{
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    50% {
      transform: scale(1.08);
      box-shadow: 0 0 25px rgba(0,0,0,0.4);
    }
  }

  .openanimation_fade {
    animation: fadeOut 1s ease forwards;
  }

  @keyframes fadeOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(10px);
    }
  }

  .quick_fade {
    animation: fadeOut 0.5s ease forwards;
  }

  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  .window {
    clip-path: inset(0 0 0 0);
  }
  
  .openanimation_slide_up {
    animation: slideUpOut 2.5s ease forwards;
}

@keyframes slideUpOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.frontpage-phone-container{
  width: 100vw;
  width: 100dvw;
  height: 100%
}

.frontpage-phone-main-container{
  width: 90%;
}

#event_type_container{
  height: 15%;
  width: 100%;
}

#title_container{
  min-height: 70%;
  width: 100%;
}

#front_date_container{
  height: 15%;
  width: 100%;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 2.5s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
  opacity: 0;
  pointer-events: none;
}
.hidden.show {
  opacity: 1;
  transition: opacity 3s ease;
}

.stylish-container-modern {
  min-width: 80%;
  max-width: 90%;
  text-align: center;
  box-sizing: border-box;

  background-color: rgba(255, 255, 255, 0.75); /* Almost opaque pure white */
  border-radius: 15px;
  
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}